Blog article
Emploi
Entreprise
Footer
General wording
Header
Presse
Ressources
Sections
Wording Emploi

Wording Emploi

		
<?php
$engagement = get_field('engagement');
$title_wording_job = get_field('title_wording_job');
$accordion_wording_job = get_field('accordion_wording_job');
$call_to_action_wording_job = get_field('call_to_action_wording_job');
?>
<?php if ($engagement){ ?>
<?php echo $engagement; ?>
<?php } ?>
<?php if ($title_wording_job){ ?>
<?php echo $title_wording_job; ?>
<?php } ?>
<?php
if ($accordion_wording_job) {
foreach ($accordion_wording_job as $accordion_wording_job_value) {
$title = $accordion_wording_job_value['title'];
$content = $accordion_wording_job_value['content'];
?>
<?php if ($title){ ?>
<?php echo $title; ?>
<?php } ?>
<?php if ($content){ ?>
<?php echo $content; ?>
<?php } ?>
<?php
}
}
?>